e161b9a6103a5a3b972ef548517ba49bf95fb471,1.9.4/src/main/java/net/geforcemods/securitycraft/items/ItemModifiedBucket.java,ItemModifiedBucket,tryPlaceContainedLiquid,#World#BlockPos#,127
Before Change
int i = pos.getX();
int j = pos.getY();
int k = pos.getZ();
worldIn.playSoundEffect(i + 0.5F, j + 0.5F, k + 0.5F, "random.fizz", 0.5F, 2.6F + (worldIn.rand.nextFloat() - worldIn.rand.nextFloat()) * 0.8F);
for (int l = 0; l < 8; ++l)
{
After Change
for(EntityPlayer player : worldIn.playerEntities)
{
worldIn.playSound(player, new BlockPos(i + 0.5F, j + 0.5F, k + 0.5F), SoundEvent.REGISTRY.getObject(new ResourceLocation("random.fizz")), SoundCategory.BLOCKS, 0.5F, 2.6F + (worldIn.rand.nextFloat() - worldIn.rand.nextFloat()) * 0.8F);
}
for (int l = 0; l < 8; ++l)